home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / graphics / graphint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-20  |  501 b   |  28 lines

  1. #ifndef    GRAPHICS_GRAPHINT_H
  2. #define    GRAPHICS_GRAPHINT_H
  3. /*
  4. **    $VER: graphint.h 39.0 (23.9.1991)
  5. **    Includes Release 44.1
  6. **
  7. **
  8. **
  9. **    (C) Copyright 1985-1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifndef EXEC_NODES_H
  14. #include <exec/nodes.h>
  15. #endif
  16.  
  17. /* structure used by AddTOFTask */
  18. struct Isrvstr
  19. {
  20.     struct Node is_Node;
  21.     struct Isrvstr *Iptr;   /* passed to srvr by os */
  22.     LONG (*code)();
  23.     LONG (*ccode) __CLIB_PROTOTYPE((APTR));
  24.     APTR Carg;
  25. };
  26.  
  27. #endif    /* GRAPHICS_GRAPHINT_H */
  28.